home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / bisonpcb / allocate.c next >
C/C++ Source or Header  |  1987-02-12  |  2KB  |  53 lines

  1. /* Allocate and clear storage for bison,
  2.    Copyright (C) 1984 Bob Corbett and Free Software Foundation, Inc.
  3.   
  4. BISON is distributed in the hope that it will be useful, but WITHOUT ANY
  5. WARRANTY.  No author or distributor accepts responsibility to anyone
  6. for the consequences of using it or for whether it serves any
  7. particular purpose or works at all, unless he says so in writing.
  8. Refer to the BISON General Public License for full details.
  9.   
  10. Everyone is granted permission to copy, modify and redistribute BISON,
  11. but only under the conditions described in the BISON General Public
  12. License.  A copy of this license is supposed to have been given to you
  13. along with BISON so you can know your rights and responsibilities.  It
  14. should be in a file named COPYING.  Among other things, the copyright
  15. notice and this notice must be preserved on all copies.
  16.   
  17.  In other words, you are welcome to use, share and improve this program.
  18.  You are forbidden to forbid anyone else to use, share and improve
  19.  what you give them.   Help stamp out software-hoarding!  */
  20.  
  21.  
  22. /*
  23.  * Port to PC by Whit Gregg
  24.  *               Nourse, Gregg & Browne, Inc.
  25.  *         1 Horizon Road
  26.  *         Fort Lee, NJ  07024
  27.  */
  28.  
  29.  
  30. #include <stdio.h>
  31. #include "func.h"
  32.  
  33.  
  34.     char *
  35. allocate(n)
  36.     register unsigned n;
  37. {
  38.     register char *block;
  39.     register char *cp;
  40.     register char *cend;
  41.     register int *ip;
  42.  
  43.     extern char *calloc();
  44.  
  45.     block = calloc(n, 1);
  46.     if (block == NULL) {
  47.         fprintf(stderr, "storage limit exceeded");
  48.         done(1);
  49.         }
  50.  
  51.     return (block);
  52.     }
  53.